home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
phoenix
/
bin
/
rexx
/
map.amirx
< prev
next >
Wrap
Text File
|
1996-10-11
|
228b
|
12 lines
/**/
options results
call open(f1,'ram:master.map','w')
done=0
'say /raw map'
do until done=1
getline
if line.command='005' then writeln(f1,substr(line.rest,2))
else if line.command='007' then done=1
end
call close(f1); exit